home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 2 / Atari Mega Archive CD - Volume 2.iso / minix / up1510b.tgz / up1510b / src / fs / file.h.D < prev    next >
Text File  |  1990-07-25  |  745b  |  23 lines

  1. *** /tmp/,RCSt1022214    Wed Jul 25 13:48:41 1990
  2. --- file.h    Mon Jul 23 10:35:54 1990
  3. ***************
  4. *** 4,11 ****
  5.   
  6.   EXTERN struct filp {
  7. !   mask_bits filp_mode;        /* RW bits, telling how file is opened */
  8. !   int filp_count;        /* how many file descriptors share this slot? */
  9.     struct inode *filp_ino;    /* pointer to the inode */
  10. !   file_pos filp_pos;        /* file position */
  11.   } filp[NR_FILPS];
  12.   
  13. --- 4,12 ----
  14.   
  15.   EXTERN struct filp {
  16. !   mode_t filp_mode;        /* RW bits, telling how file is opened */
  17. !   int filp_flags;        /* flags from open and fcntl */
  18. !   int filp_count;        /* how many file descriptors share this slot?*/
  19.     struct inode *filp_ino;    /* pointer to the inode */
  20. !   off_t filp_pos;        /* file position */
  21.   } filp[NR_FILPS];
  22.   
  23.